home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / fsinfo / pfork < prev   
Encoding:
Text File  |  1991-10-05  |  167 b   |  9 lines

  1. #!/usr/bin/perl
  2.  
  3. if ($pid = fork) {
  4.   print "I'm the parent of ", $pid, "\nwho waited on ", wait, "\n";
  5. } elsif (defined $pid) {
  6.   print "I'm the child.\n";
  7.   exit;
  8. }
  9.